body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.452)
}

.Logo{
    float: left;
    line-height: 0;
    margin: 0 20px;
    order: -1;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background: #ffffff;
  color: #ee0f0f;
  padding: 10px;
  justify-content: right;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  box-sizing: border-box;

}

.navbar a {
    float: left;
    display: block;
    color: rgb(54, 175, 24);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;

}

.navbar a:hover {
    background-color:rgba(5, 126, 21, 0.952);
    color: rgb(255, 255, 255);
}

.dropdown {
    float: left;
    overflow: hidden;

}

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: rgb(54 ,175 ,24);
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.navbar a, .dropdown:hover .dropbtn {
    background-color: rgb(255, 255, 255);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #215012;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(21, 231, 56, 0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: rgb(12, 151, 47);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #1a662d;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.title{
    color: green;
    text-decoration: underline;
    text-align: left;
    text-indent: 10px;
}
.image img{
    height: 450px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}
.parent{
    width: 90%;
    padding: 20px;
    margin: 100px auto;
    display:flex;
    flex-direction: row;
    justify-content: center;
   }
.box{
   width: 250px;
   margin: 0 10px;
   box-shadow: 0 0 20px 2px rgba(0,0,0,.1);
   transition: 1s;
}
.box img{
   display: block;
   width: 100%;
   border-radius: 5px;
}
.box:hover{
   transform: scale(1.3)

}
.style{
    color: rgb(54, 175, 24);
}
.workout{
    color: rgb(54, 175, 24);
}
.table{
     border-collapse: collapse;
    margin: 20px;
    min-width: 800px;
    border-radius: 5px 5px 0 0 ;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 15);
    width: 97%;
    table-layout: fixed;

}
.table thead tr{
    background: green;
    text-align: center;
    font-weight: bold;
}
.table th
.table td{
padding: 12px 15px;
}

.td{
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    background: grey;
}
.td2{
    text-align: center;
    background-color: grey;
}
.table td {
    border: 1px solid grey;
}

.footer {
            background-color: #fff;
            color: #198754;
            padding: 10px;
            text-align: center;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-left,
        .footer-center,
        .footer-right {
            flex: 1;
        }

        .footer-left {
            text-align: left;
        }

        .footer-center {
            text-align: center;
        }

        .footer-right {
            text-align: right;
            color: #198754;
        }

        .footer-icons a {
            color: #198754;
            margin: 0 10px;
            text-decoration: none;
            font-size: 18px;
        }
